Input with new line
Pascal C/C++
wvar
w c: char;
w i: integer;
w r: real;
w s: packed array[1..10] of char;
NO STANDARD PASCAL EQ. scanf(“%s”, & s);
readln; while(getchar() != ‘\n’);
readln(c, i, r); scanf(“%c%d%f”, & c, & i, & r);
  while(getchar() != ‘\n’);
w#include <stdio.h>
wchar c;
wint i;
wfloat r;
wchar s[10];